home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / zendisk1.zip / LST8-10.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  411b  |  19 lines

  1. ;
  2. ; *** Listing 8-10 ***
  3. ;
  4. ; Sets the BIOS equipment flag to select an 80-column
  5. ; color monitor.
  6. ; Uses mod-reg-rm AND and OR instructions.
  7. ;
  8.     call    ZTimerOn
  9.     rept    1000
  10.     sub    ax,ax
  11.     mov    es,ax        ;point ES to the segment at 0
  12.     and    byte ptr es:[410h],not 30h
  13.                 ;mask off the adapter bits
  14.     or    byte ptr es:[410h],20h
  15.                 ;set the adapter bits to select
  16.                 ; 80-column color
  17.     endm
  18.     call    ZTimerOff
  19.